home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / TTools / TToolsPalette / TBinderList.subproj / TBinderInspector.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  713 b   |  35 lines

  1. /* TBinderInspector.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9. #import <appkit/appkit.h>
  10.  
  11. @interface TBinderInspector:Object
  12. {
  13.     id    interfaceAccessorField;
  14.     id    interfaceModifierField;
  15.     id    dataSourceAccessorField;
  16.     id    dataSourceModifierField;
  17.     id    inspectorView;
  18.     id    verifySwitch;
  19.     id    autoUpdateSwitch;
  20.     id    binder;
  21.     id    connectInspector;
  22.     id    fields[4];
  23. }
  24.  
  25. - awakeFromNib;
  26. - inspectorView;
  27. - inspectBinder:anObject andReturnTo:otherObject;
  28. - choose:sender;
  29. - ok:sender;
  30. - doneAfterDelay:sender;
  31. - done:sender;
  32. - revert:sender;
  33.  
  34. @end
  35.